Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632707 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/32 - Key Code

font/ cody/swapnilsparsh/30DaysOfJavaScript/32 - Key Code/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/32 - Key Code/assets/
    1 Items
  • Keycode.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/32 - Key Code/style.css
    116 Views
    0 Comments
    * {
    padding: 0;
    box-sizing: border-box;
    font-family: "sans";
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/32 - Key Code/index.html
    343 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <link rel="icon" href="assets/Keycode.png">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/32 - Key Code/script.js
    179 Views
    0 Comments
    const insert = document.getElementById("insert");

    window.addEventListener("keydown", (event) => {
    insert.innerHTML = `
    <div class="key">
    ${event.key === " " ? "Space" : event.key}
    <small>event.key</h3>
    </div>